home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / nortutil.zip / src / TaxLaw / taxmain.c < prev    next >
C/C++ Source or Header  |  1996-08-28  |  308b  |  20 lines

  1.  
  2. extern void exit();
  3.  
  4. main(argc, argv)
  5. int argc;
  6. char *argv[];
  7. {
  8. int i,j;
  9.  
  10.         if(argc < 2)
  11.         {
  12.                 puts("usage: taxlaw [number of sentences]");
  13.                 exit(-1);
  14.         }
  15.  
  16.         j = atoi(argv[1]);
  17.         for(i = 0; i < j;i++)
  18.                 taxlaw();
  19. }
  20.